home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / internet / eudor154.zip / COMMON.Z / BOCA.MOD < prev    next >
Text File  |  1995-12-14  |  2KB  |  48 lines

  1. ;Boca Research Inc. 14.4
  2. ;
  3. ; If you make a change to this file you should change the description (the
  4. ; top line) so that the setup program can distinguish this new setup from
  5. ; the one you changed.  Be sure to rename and copy the modified file to
  6. ; the scripts directory.
  7. ;
  8. ; An explicit \r must be placed at the end of a send line if you wish to
  9. ; terminate the line.  \r\n are stripped to \r.  \n will be sent without
  10. ; translation.
  11. ;
  12. ; The modem is assumed to be configured such that
  13. ;  1) When DTR is dropped the modem dropps carier and goes into command mode
  14. ;  2) Must operate in reliable mode LAMP or MNP
  15. ;  3) Hardware flow control is desired, modem and eudora.ini file must match
  16. ;  4) The modem does not change the DCE speed after connect
  17. ;
  18. cancelon ERROR
  19. ;
  20. send AT\r
  21. pause 1
  22. ;
  23. ;   &F    - Restore factory defaults
  24. ;   V1    - Verbose responses
  25. ;   X4    - Most verbose/informative responses (for a typical modem)
  26. ;   &C1   - Raise DCD only when carrier is present
  27. ;   S7=60 - modem hangs up after 60 seconds if carrier is not established
  28. ;
  29. send AT &FV1X4&C1&D2&R1&K3S7=60\r
  30. waitfor OK
  31. ;
  32. ;   2.  Enter the command that configures your modem for reliable operation
  33. ;       (MNP4 or V.42).
  34. ;
  35. ;   EXAMPLE:  send AT \\N2\r
  36. send AT &Q5\r
  37. ;
  38. ;   5.  Enter the command that fixes (freezes) the modem baud rate.
  39. ;
  40. ;   EXAMPLE:  send AT \\J0\r
  41. ;
  42. send AT N0S37=11\r
  43. ; use for 14.4k operation
  44. ; send AT N0S37=9\r  is used for 9600
  45. ;
  46. set FlowControl=Hardware
  47. ;
  48.